home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 94 / CD-ROM 94.iso / util / weban / setup.msi / Cabs.w23.cab / reportnamelist.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-02-08  |  402 b   |  13 lines

  1. <?xml version="1.0"?> 
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:template match="/">
  4.     <xsl:for-each select="Reports">
  5.         <xsl:apply-templates>
  6.             <xsl:sort order="sortorder" select="sortfield"/>
  7.         </xsl:apply-templates>
  8.     </xsl:for-each>
  9. </xsl:template>
  10.  
  11. <xsl:template match="Report"><xsl:value-of select="@file"/>,</xsl:template>
  12.  
  13. </xsl:stylesheet>